5 |
How do I put a picture on the control's background
Dim oScrollBar as P oScrollBar = topparent:CONTROL_ACTIVEX1.activex oScrollBar.Picture = oScrollBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oScrollBar.Template = "VisiblePart(640) = False" // oScrollBar.VisiblePart(640) = .f. oScrollBar.BackColor = -2147483644 |
4 |
How can I change the size of control's font
|
3 |
How do I change the control's font
Dim oScrollBar as P oScrollBar = topparent:CONTROL_ACTIVEX1.activex oScrollBar.Font.Name = "Tahoma" oScrollBar.ForeColor = 255 oScrollBar.Template = "Caption(256) = `<img>0</img>thumb`" // oScrollBar.Caption(256) = "<img>0</img>thumb" |
2 |
How can I change the control's foreground color
Dim oScrollBar as P oScrollBar = topparent:CONTROL_ACTIVEX1.activex oScrollBar.ForeColor = 255 oScrollBar.Template = "Caption(256) = `<img>0</img>thumb`" // oScrollBar.Caption(256) = "<img>0</img>thumb" |
1 |
How can I change the control's background color
Dim oScrollBar as P oScrollBar = topparent:CONTROL_ACTIVEX1.activex oScrollBar.BackColor = 65280 oScrollBar.Template = "VisiblePart(640) = False" // oScrollBar.VisiblePart(640) = .f. |